toggle menu
Spring Boot Kotlin API
4.0.0-M3
jvm
switch theme
search in API
Spring Boot Kotlin API
/
org.springframework.boot.docs.web.servlet.springmvc
Package-level
declarations
Types
Types
Customer
Link copied to clipboard
class
Customer
Customer
Repository
Link copied to clipboard
interface
CustomerRepository
:
CrudRepository
<
Customer
,
Long
>
My
Rest
Controller
Link copied to clipboard
@
RestController
@
RequestMapping
(
value
=
"/users"
)
open
class
MyRestController
@
RestController
@
RequestMapping
(
value
=
[
"/users"
]
)
class
MyRestController
(
userRepository
:
UserRepository
,
customerRepository
:
CustomerRepository
)
My
Routing
Configuration
Link copied to clipboard
@
Configuration
(
proxyBeanMethods
=
false
)
open
class
MyRoutingConfiguration
@
Configuration
(
proxyBeanMethods
=
false
)
class
MyRoutingConfiguration
My
User
Handler
Link copied to clipboard
@
Component
open
class
MyUserHandler
@
Component
class
MyUserHandler
User
Link copied to clipboard
class
User
User
Repository
Link copied to clipboard
interface
UserRepository
:
CrudRepository
<
User
,
Long
>